home *** CD-ROM | disk | FTP | other *** search
- ######################################################
- # #
- # Makefile for TURTLE #
- # #
- # Use NMAKE to compile #
- # #
- ######################################################
-
- all : turtle.exe tsave.dll
-
- turtle.exe : turtle.obj tcmds.obj xci.obj texpr.obj
- cl -AL -Lp turtle.obj tcmds.obj xci.obj \
- texpr.obj c:\run286\lib\graphp.obj \
- LLIBPE.LIB GRAPHICS.LIB
- implib turtle.lib turtle.exe
-
- turtle.obj : turtle.c xci.h turtle.h
- cl -AL -Ox -G2 -c turtle.c
-
- tcmds.obj : tcmds.c xci.h turtle.h
- cl -AL -Ox -G2 -c tcmds.c
-
- texpr.obj : texpr.c turtle.h
- cl -AL -Ox -G2 -c texpr.c
-
- xci.obj : xci.c xci.h
- cl -AL -Ox -G2 -c xci.c
-
- tsave.dll : tsave.c dllstart.asm turtle.h xci.h turtle.lib
- cl -ML -Gs -Lp -Ox -G2 tsave.c dllstart.asm turtle.lib